home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 125 / Computer Shopper CD-ROM Issue 125 (1998-07)(Dennis Publishing).iso / Business / Dazzler / DAZZLER.Z / CPrintAction.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-11-26  |  601 b   |  17 lines

  1. import java.io.DataInputStream;
  2.  
  3. public class CPrintAction extends CAction {
  4.    public CPrintAction() {
  5.       super(40);
  6.    }
  7.  
  8.    boolean LoadFromFile(DataInputStream var1) {
  9.       CRect var2 = new CRect();
  10.       FileLoad.ReadCPlusInt(var1);
  11.       FileLoad.ReadCPlusInt(var1);
  12.       var2.LoadFromFile(var1);
  13.       System.out.println("Warning: Print Action not supported in this version");
  14.       return super.LoadFromFile(var1);
  15.    }
  16. }
  17.